
--------------------------------------------------------------------
Per la documentazione in italiano: http://www.blender.it
--------------------------------------------------------------------


blender.it has released the result of the work made by the BlenderCAD team, called, of course, BlenderCAD.

BlenderCAD is a Blender script created with the aim of expand the functionality of Blender, so that it could
be used for the Computer Aided Drawing.
The intention is to create a tool for the technical drawing, so as to use Blender
also in the field of the technical design.
obviously, being a pre-alpha, BlenderCAD is not even usable, and surely it has some bugs.
However this pre-alpha is already able to show the programming style and the choices that has been made in coding,
and also the first, already implemented, tools: the "object snap" and the drawing of some, basic, primitives.


-------------------------------
Quickstart - code examples
-------------------------------

- circle 3 (radius: 3)

- circle 3,4,5 3 (position: 3,4,5 radius: 3)

- polygon 3 8 (radius: 3 sides: 8)

- polygon 3,4,5 3 8 (position: 3,4,5 radius: 3 sides: 8)

- line 3,4,5 (line from position 3,4,5 to cursor position)

- line -20,4,0 -15,0,0 -12,-5,0 -9,7,0 (4 points line)

- polyline (draw polylines point by point)

- cursor 2,3,5 (move the cursor to the 2,3,5 position)

You can use the repeat button to repeat the last command.

-------------------------------